home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / DOS32.ZIP;1 / MK.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-10-04  |  246 b   |  12 lines

  1. rem    A batch file to assemble for the DOS extender
  2. @echo off
  3. if not exist %1.ASM goto :NotFound
  4. tasm /z /p %1
  5. if not exist %1.OBJ goto :Exit
  6. tlink /3  %1 dos32.obj %2 %3 %4 %5
  7. goto :Exit
  8.  
  9. :NotFound
  10. echo     %1.ASM   NOT FOUND
  11. :Exit
  12.